onLogout

Arguments

ePointer

A pointer variable with the following properties:

tmplPointer

Component definition

logoutSucceededLogical

A .t. or .f. value. If .t., logout succeeded. Otherwise, .f..

_statePointer

State information passed between the server and client. The value of any state variables will be available in all subsequent ajax callbacks.

To set state variables:

e._state.myvar1 = "value1"
e._state.myvar2 = "value2"

To read the value of a state variable that was previously set:

myVar1 = e._state.myvar1
If a full refresh of the UX Component is done when the user logs out, state variables set in the onLogout event will not be retained.
javascriptCharacter

An optional variable that can be used to pass JavaScript to the client for execution. For example:

e.javascript = "alert('hello');"

Description

Fires when the user tries to logout.